projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
04c5fda
)
shorthand: Add ',' to value_is_done_parsing()
author
Benjamin Otte
<otte@redhat.com>
Wed, 4 Apr 2012 17:02:18 +0000
(19:02 +0200)
committer
Benjamin Otte
<otte@redhat.com>
Tue, 17 Apr 2012 06:59:19 +0000
(08:59 +0200)
gtk/gtkcssshorthandpropertyimpl.c
patch
|
blob
|
history
diff --git
a/gtk/gtkcssshorthandpropertyimpl.c
b/gtk/gtkcssshorthandpropertyimpl.c
index 03d84e8c836b62c4ba70d484f8f21417855238ec..99e2f2a358f5edeaa1bc33f7f4f270b2ecd90322 100644
(file)
--- a/
gtk/gtkcssshorthandpropertyimpl.c
+++ b/
gtk/gtkcssshorthandpropertyimpl.c
@@
-50,6
+50,7
@@
static gboolean
value_is_done_parsing (GtkCssParser *parser)
{
return _gtk_css_parser_is_eof (parser) ||
+ _gtk_css_parser_begins_with (parser, ',') ||
_gtk_css_parser_begins_with (parser, ';') ||
_gtk_css_parser_begins_with (parser, '}');
}